home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 750 / fontviewq / fontviewq.h < prev    next >
C/C++ Source or Header  |  1995-03-18  |  2KB  |  105 lines

  1. #ifndef FONTVIEWQ_H
  2. #define FONTVIEWQ_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17.  
  18. /****************************************************************************/
  19.  
  20.  
  21. #define MSG_CXDESCR 0
  22. #define MSG_CXDESCR_STR "shows a table of characters"
  23.  
  24. #define MSG_FONTSEL 1
  25. #define MSG_FONTSEL_STR "Select _Font..."
  26.  
  27. #define MSG_PAGE 2
  28. #define MSG_PAGE_STR "Page:"
  29.  
  30. #define MSG_DECIMAL 3
  31. #define MSG_DECIMAL_STR "Decimal:"
  32.  
  33. #define MSG_CHAR 4
  34. #define MSG_CHAR_STR "Character:"
  35.  
  36. #define MSG_STROKE 5
  37. #define MSG_STROKE_STR "Keystroke:"
  38.  
  39. #define MSG_HIDE 6
  40. #define MSG_HIDE_STR "_Hide"
  41.  
  42. #define MSG_QUIT 7
  43. #define MSG_QUIT_STR "_Quit"
  44.  
  45. #define MSG_ABORT_GAD 8
  46. #define MSG_ABORT_GAD_STR "Abort Program"
  47.  
  48. #define MSG_CONTI_GAD 9
  49. #define MSG_CONTI_GAD_STR "Continue"
  50.  
  51. #define MSG_NOTFOUND 10
  52. #define MSG_NOTFOUND_STR "Couldn't find %s"
  53.  
  54. #define MSG_NOMEMORY 11
  55. #define MSG_NOMEMORY_STR "Not enough memory"
  56.  
  57. #define MSG_INITFAIL 12
  58. #define MSG_INITFAIL_STR "Initialization failed"
  59.  
  60. #define MSG_NOWINDOW 13
  61. #define MSG_NOWINDOW_STR "Couldn't open window"
  62.  
  63. #define MSG_CHOOSEFONT 14
  64. #define MSG_CHOOSEFONT_STR "Select font"
  65.  
  66.  
  67. /****************************************************************************/
  68.  
  69.  
  70. #ifdef STRINGARRAY
  71.  
  72. struct AppString
  73. {
  74.     LONG   as_ID;
  75.     STRPTR as_Str;
  76. };
  77.  
  78. struct AppString AppStrings[] =
  79. {
  80.     {MSG_CXDESCR,MSG_CXDESCR_STR},
  81.     {MSG_FONTSEL,MSG_FONTSEL_STR},
  82.     {MSG_PAGE,MSG_PAGE_STR},
  83.     {MSG_DECIMAL,MSG_DECIMAL_STR},
  84.     {MSG_CHAR,MSG_CHAR_STR},
  85.     {MSG_STROKE,MSG_STROKE_STR},
  86.     {MSG_HIDE,MSG_HIDE_STR},
  87.     {MSG_QUIT,MSG_QUIT_STR},
  88.     {MSG_ABORT_GAD,MSG_ABORT_GAD_STR},
  89.     {MSG_CONTI_GAD,MSG_CONTI_GAD_STR},
  90.     {MSG_NOTFOUND,MSG_NOTFOUND_STR},
  91.     {MSG_NOMEMORY,MSG_NOMEMORY_STR},
  92.     {MSG_INITFAIL,MSG_INITFAIL_STR},
  93.     {MSG_NOWINDOW,MSG_NOWINDOW_STR},
  94.     {MSG_CHOOSEFONT,MSG_CHOOSEFONT_STR},
  95. };
  96.  
  97.  
  98. #endif /* STRINGARRAY */
  99.  
  100.  
  101. /****************************************************************************/
  102.  
  103.  
  104. #endif /* FONTVIEWQ_H */
  105.